This function sets the fill value for the specified field. The fill value is placed in all elements of the field which have not been explicitly defined.
Result = EOS_GD_SETFILLVALUE(gridID, fieldname, fillvalue)
Returns SUCCEED(0) if successful and FAIL(–1) otherwise.
Grid id (long) returned by EOS_GD_CREATE or EOS_GD_ATTACH.
Fieldname (string).
The fill value to be used.
None
In this example, we set a fill value for the “Temperature” field:
tempfill = -999.0
status = EOS_GD_SETFILLVALUE(gridID, "Temperature", tempfill)
5.2 |
Introduced |